summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-07-24 20:19:49 +0200
committerarchshift <admin@archshift.com>2014-07-24 20:24:22 +0200
commit431d898a813ce65eeb1d0dfca449d310b2b2811b (patch)
tree1fa7a405639450c289090e0412f092bc92b6dfbe /Tools
parentRemoved redundant semicolons and re-added warning (diff)
downloadcuberite-431d898a813ce65eeb1d0dfca449d310b2b2811b.tar
cuberite-431d898a813ce65eeb1d0dfca449d310b2b2811b.tar.gz
cuberite-431d898a813ce65eeb1d0dfca449d310b2b2811b.tar.bz2
cuberite-431d898a813ce65eeb1d0dfca449d310b2b2811b.tar.lz
cuberite-431d898a813ce65eeb1d0dfca449d310b2b2811b.tar.xz
cuberite-431d898a813ce65eeb1d0dfca449d310b2b2811b.tar.zst
cuberite-431d898a813ce65eeb1d0dfca449d310b2b2811b.zip
Diffstat (limited to 'Tools')
-rw-r--r--Tools/MCADefrag/Globals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/MCADefrag/Globals.h b/Tools/MCADefrag/Globals.h
index 6593187e6..288069599 100644
--- a/Tools/MCADefrag/Globals.h
+++ b/Tools/MCADefrag/Globals.h
@@ -240,7 +240,7 @@ template <typename Type> class cItemCallback
public:
/// Called for each item in the internal list; return true to stop the loop, or false to continue enumerating
virtual bool Item(Type * a_Type) = 0;
- virtual ~cItemCallback() {};
+ virtual ~cItemCallback() {}
} ;